home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_02_05
/
2n05065b
< prev
next >
Wrap
Text File
|
1991-03-25
|
274b
|
18 lines
/*
* Display the size of a sizeof expression and of size_t
*/
#include <stdio.h>
char huge s[80000];
int main(void)
{
printf("%lu\n", (unsigned long)sizeof(sizeof(s)));
printf("%lu\n", (unsigned long)sizeof(size_t));
return 0;
}